home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 8381 / 8381.xpi / chrome / content / webclipper / mac / webclipperOverlay.xul < prev   
Extensible Markup Language  |  2010-02-02  |  1KB  |  33 lines

  1. <?xml version="1.0"?>
  2. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  3. <?xml-stylesheet href="chrome://webclipper3/skin/webclipperOverlay.css" type="text/css"?>
  4.  
  5. <overlay id="evernote-mozilla-extension-clipping-code" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  6.  
  7.   <!-- bookmarklet clipper code which we use as a fallback on PPC or some other weirdness -->
  8.   <script type="application/x-javascript" src="http://www.evernote.com/public/bookmarkClipper.js"/>
  9.  
  10.   <!-- our mac clipping javascript code -->
  11.   <script type="application/x-javascript" src="chrome://webclipper3/content/mac-clip-to-evernote.js"/>
  12.  
  13.   <!-- common function to put the button in the toolbar the first go-round -->
  14.   <script type="application/x-javascript" src="chrome://webclipper3-common/content/toolbar-button-init.js"/>
  15.  
  16.   <!-- our Firefox toolbar button -->
  17.   <toolbarpalette id="BrowserToolbarPalette">
  18.     <toolbarbutton id="webclipper3-button" label="Add to Evernote"
  19.       class="enmac-clipper-button toolbarbutton-1"
  20.       tooltiptext="Add selected text or entire page to Evernote as new note"
  21.       onclick="evernote_performClip(null);" />
  22.   </toolbarpalette>
  23.  
  24.   <!-- our firefox popup menu -->
  25.   <popup id="contentAreaContextMenu">
  26.     <menuseparator id="evernote-clipper-menu-sep" />
  27.     <menuitem id="evernote-clipper-menu"
  28.       label="Add to Evernote" 
  29.       oncommand="return evernote_performClip(document.popupNode);" />
  30.   </popup>
  31.  
  32. </overlay>
  33.